home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / lib / cryptsetup / checks / ext2 next >
Text File  |  2009-10-14  |  156b  |  9 lines

  1. #!/bin/sh
  2.  
  3. if /sbin/e2label $1 2>/dev/null 1>&2; then
  4.   exit 0
  5. else
  6.   echo " - The device $1 does not contain a valid EXT2 or EXT3 filesystem."
  7.   exit 1
  8. fi
  9.